home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programming Languages Suite
/
ProgramD2.iso
/
Borland
/
Borland C++ V5.02
/
DLLSKEL.PAK
/
DLLSKEL.H
< prev
next >
Wrap
C/C++ Source or Header
|
1997-05-06
|
750b
|
29 lines
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
// PARTICULAR PURPOSE.
//
// Copyright (C) 1993-1995 Microsoft Corporation. All Rights Reserved.
//
// MODULE: dllskel.h
//
// PURPOSE:
// Contains declarations for use by applications and other DLLs that
// link to this DLL. It is not used to build the DLL itself.
//
#ifndef INC_DLLSKEL_H
#define INC_DLLSKEL_H
#include <windows.h>
#define DLLIMPORT __declspec(dllimport)
DLLIMPORT BOOL WINAPI DLLFunction1 (HWND, LPSTR);
DLLIMPORT float _stdcall DLLFunction2 (HWND);
#endif // INC_DLLSKEL_H